home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 19 / Mac Magazin and MacEasy Magazine CD - Issue 19.iso / Wissenschaft & Technik / FFTs for RISC 1.1 / fftlib.h < prev    next >
Text File  |  1995-12-19  |  2KB  |  50 lines

  1. long FFTInit(long *fftMptr, long fftN, float *Utbl);
  2. /* Compute cosine table and check size for complex ffts    */
  3. /* INPUTS */
  4. /* fftN = size of fft    */
  5. /* OUTPUTS */
  6. /* *fftMptr = log2 of fft size    */
  7. /* *Utbl = cosine table with fftN/4 + 1 entries (angles = 0 to pi/2 inclusive)    */
  8. /* RETURNS */
  9. /* 1 if fftN is invalid, 0 otherwise    */
  10.  
  11. long rFFTInit(long *fftMptr, long fftN, float *Utbl);
  12. /* Compute cosine table and check size for a real input fft    */
  13. /* INPUTS */
  14. /* fftN = size of fft    */
  15. /* OUTPUTS */
  16. /* *fftMptr = log2 of fft size    */
  17. /* *Utbl = cosine table with fftN/4 + 1 entries (angles = 0 to pi/2 inclusive)    */
  18. /* RETURNS */
  19. /* 1 if fftN is invalid, 0 otherwise    */
  20.  
  21. void ffts(float *ioptr, long M, long Rows, float *Utbl);
  22. /* Compute complex fft on the rows of the input array    */
  23. /* INPUTS */
  24. /* M = log2 of fft size    */
  25. /* *ioptr = input data array    */
  26. /* *Utbl = cosine table    */
  27. /* Rows = number of rows in ioptr array (use Rows of 1 if ioptr is a 1 dimensional array)    */
  28. /* OUTPUTS */
  29. /* *ioptr = output data array    */
  30.  
  31. void iffts(float *ioptr, long M, long Rows, float *Utbl);
  32. /* Compute inverse complex fft on the rows of the input array    */
  33. /* INPUTS */
  34. /* M = log2 of fft size    */
  35. /* *ioptr = input data array    */
  36. /* *Utbl = cosine table    */
  37. /* Rows = number of rows in ioptr array (use Rows of 1 if ioptr is a 1 dimensional array)    */
  38. /* OUTPUTS */
  39. /* *ioptr = output data array    */
  40.  
  41. void rffts(float *ioptr, long M, long Rows, float *Utbl);
  42. /* Compute real fft on the rows of the input array    */
  43. /* INPUTS */
  44. /* M = log2 of fft size    */
  45. /* *ioptr = input data array    */
  46. /* *Utbl = cosine table    */
  47. /* Rows = number of rows in ioptr array (use Rows of 1 if ioptr is a 1 dimensional array)    */
  48. /* OUTPUTS */
  49. /* *ioptr = output data array    */
  50.